home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1995 June / MacFormat 25.iso / Shareware City / Developers / appe Windows 1.51.1 / windows.h < prev   
Encoding:
Text File  |  1994-12-24  |  861 b   |  23 lines  |  [TEXT/KAHL]

  1. // File "windows.h" -
  2. // This header file is Copyright Matt Slot & Slot-Machines Ltd., © 1994
  3.  
  4. typedef pascal WindowPtr (*NewWindowProc)(Ptr wStorage, Rect *bounds, StringPtr title,
  5.         short visFlag, short wDefProcID, WindowPtr behind, short goAwayFlag, long refcon);
  6.  
  7. // * ****************************************************************************** *
  8. // * ****************************************************************************** *
  9. // Function Prototypes
  10.  
  11. void DoCreateWindow(void);
  12. void DoDisposeWindow(void);
  13.  
  14. void DoClickWindow(void);
  15. short DoKeydownWindow(void);
  16. void DoZoomWindow(short zoomPart);
  17. void DoUpdateWindow(void);
  18. void DoRevealWindow(short reveal);
  19. void DoIdleWindow(void);
  20.  
  21. pascal WindowPtr SmartNewWindow(Ptr wStorage, Rect *rBounds, StringPtr title,
  22.         short visFlag, short wDefProcID, WindowPtr behind, short goAwayFlag, long refCon);
  23.